home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- if(timerMove-- < 0)
- {
- _X = random(740) + 20;
- _Y = random(440) + 20;
- timerMove = 20 + random(100);
- }
- if(timerShoot-- < 0)
- {
- var choice = random(6);
- if(choice == 0)
- {
- _root.game.switchToSnot();
- }
- else if(choice == 1)
- {
- _root.game.switchToGreese();
- }
- else if(choice == 2)
- {
- _root.game.switchToFire();
- }
- else if(choice == 3)
- {
- _root.game.switchToIce();
- }
- else if(choice == 4)
- {
- _root.game.switchToSteel();
- timerDetonate = 50;
- }
- else if(choice == 5)
- {
- _root.game.switchToMeteor();
- }
- _root.game.shoot();
- timerShoot = 50 + random(50);
- }
- if(timerDetonate > 0)
- {
- if(--timerDetonate == 0)
- {
- _root.game.detonateSteel();
- }
- }
- }
-